-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
APP-6845: Create GetBillingService API #588
Conversation
proto/viam/app/v1/app.proto
Outdated
message GetBillingServiceResponse { | ||
BillingAddress billing_address = 1; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@RoxyFarhad what other fields are you picturing here? you listed a few in the ticket description but wanted to know what you included in the email
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
copied from the email:
message GetBillingServiceConfigResponse {
BillingAddress billing_address = 1;
string support_email = 2;
string logo_url = 3;
string billing_dashboard_url = 4;
}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated
proto/viam/app/v1/app.proto
Outdated
@@ -69,6 +69,8 @@ service AppService { | |||
|
|||
rpc UpdateBillingService(UpdateBillingServiceRequest) returns (UpdateBillingServiceResponse); | |||
|
|||
rpc GetBillingService(UpdateBillingServiceRequest) returns (UpdateBillingServiceResponse); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be GetBillingServiceConfig?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yup I think that it should be
This reverts commit 8150276.
APP-6845